:root {
  --bg: #fff7ec;
  --sidebar: #fff0df;
  --orange: #ffb21a;
  --orange-dark: #f28a00;
  --green: #8bc34a;
  --blue: #61a8d8;
  --text: #8a8a8a;
  --dark-text: #666;
  --border: #b8b8b8;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Verdana, Gulim, Arial, sans-serif;
  font-size: 12px;
}

a {
  color: var(--orange-dark);
  text-decoration: none;
  font-weight: bold;
}

.site-wrap {
  width: 1000px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.top-ad {
  height: 90px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}

.main-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
}

.sidebar {
  background: var(--sidebar);
  border-right: 1px solid #ddd;
  min-height: 760px;
}

.side-title {
  background: linear-gradient(to right, #ffa400, #ffc944);
  color: white;
  padding: 6px 12px;
  font-size: 20px;
  font-style: italic;
  font-weight: bold;
}

.side-title span {
  font-size: 13px;
  margin-right: 6px;
}

.side-box {
  padding: 8px 12px 14px;
  border-bottom: 1px solid #f0d7bd;
}

.nav-list a {
  display: block;
  padding: 5px 0;
  border-bottom: 1px dotted #e4cdb5;
  color: #888;
  font-weight: normal;
}

.content {
  background: white;
  min-height: 760px;
  padding: 16px;
}

.page-title {
  border-bottom: 2px solid #777;
  color: var(--orange-dark);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 14px;
  padding-bottom: 5px;
}

.box {
  border: 2px solid #555;
  background: white;
  margin-bottom: 14px;
  padding: 12px;
  line-height: 1.7;
}

.box-title {
  color: var(--orange-dark);
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}


.page-header {
  margin: 16px;
  padding: 12px;
  border: 2px solid #555;
  background: #fff;
}

.page-header-title {
  color: var(--orange-dark);
  font-size: 18px;
  font-weight: bold;
  font-family: Georgia, serif;
}

.page-header-subtitle {
  color: #aaa;
  margin-top: 4px;
}

.subpage-box {
  margin: 16px;
  padding: 12px;
  border: 1px solid var(--border);
  background: #fff;
  line-height: 1.7;
}

.subpage-title {
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.subpage-title.green {
  color: #74a83b;
}

.subpage-title.blue {
  color: var(--blue);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid #555;
}

.profile-grid div {
  padding: 8px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
}

.profile-grid div:nth-child(2n) {
  border-right: none;
}




footer {
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 12px;
  color: #aaa;
  font-size: 11px;
  background: #fffaf4;
}